str = "Hello dear Henry"

new_str = str.lstrip("H")
print(new_str) 

#code ends here......
#output
#ello dear Henry